home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / P&K_MAND / MANDELBR.C < prev    next >
C/C++ Source or Header  |  1991-12-14  |  531b  |  27 lines

  1. /******************************************************************************
  2.  
  3.   Mandelbrot.c
  4.  
  5.      A Mandelbrot main file for writing programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright ⌐ 1990 Symantec Corporation.  All rights reserved.
  9.   
  10. ******************************************************************************/
  11.  
  12.  
  13. #include "CMandelbrotApp.h"
  14.  
  15.  
  16. void main()
  17.  
  18. {
  19.     CMandelbrotApp    *MandelbrotApp;                    
  20.  
  21.     MandelbrotApp = new CMandelbrotApp;
  22.     
  23.     MandelbrotApp->IMandelbrotApp();
  24.     MandelbrotApp->Run();
  25.     MandelbrotApp->Exit();
  26. }
  27.